home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-01 / fviewsrc.zip / NODEBUG < prev    next >
Text File  |  1993-01-04  |  2KB  |  48 lines

  1. #
  2. #
  3. #  Make file for use with Borland's Turbo C (A great development environment)
  4. #  Copyright 1989, Doug Boone
  5. #
  6. #
  7. #  If you DON'T have the PAK Toolkit from NoGate Consulting, and are
  8. #  going to SHELL to run pak.exe, remove the '#' signs and use this:
  9. #
  10. #fview.exe: fview.obj foscom.obj arc_view.obj unzip.obj
  11. #        tlink /v c:\tc\lib\c0c fview foscom arc_view unzip, fview, fview, c:\tc\lib\cc
  12. #
  13. #  If you DO have the PAK Toolkit from NoGate Consulting, get out the 
  14. #  EXPAND.OBJ, UTILITY.OBJ, and COMPRESS.H files and use this:
  15. #
  16.  
  17. fview.exe: fview.obj foscom.obj arc_view.obj unzip.obj unpak.obj expand.obj utility.obj
  18.         tlink c:\tc\lib\c0c fview foscom arc_view unzip unpak expand utility, fview, fview, c:\tc\lib\cc
  19. #
  20. #
  21.  
  22. #  If you DON'T have the PAK Toolkit from NoGate Consulting, and are
  23. #  going to SHELL to run pak.exe, remove the '#' signs and use this:
  24. #
  25. #fview.obj: fview.c archdr.h fview.h
  26. #        tcc -c -mc -f- -G -DTURBOC -v- fview.c
  27. #
  28. #  If you DO have the PAK Toolkit from NoGate Consulting, get out the 
  29. #  EXPAND.OBJ, UTILITY.OBJ, and COMPRESS.H files and use this:
  30. #
  31. fview.obj: fview.c archdr.h fview.h
  32.         tcc -c -mc -f- -G -DTURBOC;PAKIT -v- fview.c
  33.  
  34. foscom.obj: foscom.c archdr.h
  35.         tcc -c -mc -f- -G -DTURBOC -v- foscom.c
  36.  
  37. arc_view.obj: arc_view.c archdr.h arc_view.h
  38.         tcc -c -mc -f- -G -DTURBOC -v- arc_view.c
  39.  
  40. unzip.obj: unzip.c archdr.h unzip.h
  41.         tcc -c -mc -f- -G -DTURBOC -v- unzip.c
  42. #
  43. #  If you aren't going to use the PAK Toolkit, you don't need this:
  44. #
  45. unpak.obj: unpak.c compress.h
  46.         tcc -c -mc -f- -G -DTURBOC -v- unpak.c
  47.  
  48.